home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Includes / PedObject.hh < prev    next >
Encoding:
Text File  |  2000-06-24  |  381 b   |  15 lines

  1. /* PedObject.hh */
  2.  
  3. #pragma once
  4.  
  5. #include "XObject.hh"
  6.  
  7. // Because Metrowerks CodeWarrior is FUCKED, we can't use 'virtual' here.
  8. // Fortunately, we are clever enough not to require classes
  9. // that multiply inherit from more than one subclass of PedObject.
  10.  
  11. class PedObject : /*virtual*/ public XObject {
  12. public:
  13.     virtual long Message(long inMsgCode, void *inData) {return 0;}
  14. };
  15.